Funds movement list
Description
Returns a list of tokens where major-player funds movement is detected on centralized exchanges for spot or futures trading.
Use cases:
- Monitor tokens with active capital flow and short-term arbitrage potential during uptrends or range-bound markets
- Discover tokens with abnormal fund flows
Tips:
- Query this API when natural language input includes terms such as movement, bullish funds, or movement bullish
- Query this API when natural language input includes upside opportunity or bullish tokens; label results as funds-movement bullish tokens
Data refresh: Updated every 5 minutes
Endpoint
- Method:
POST - Path:
/open/v1/ai/getFundsCoinList
Points
- Points per call:
6
Prerequisites
No prerequisites; you can call this API directly.
Request parameters
Parameters are sent in the request body as JSON.
No request parameters.
Response fields
Field structure for each object in the data array only:
| Field | Type | Actual serialized type | Description |
|---|---|---|---|
| updateTime | long | long | Update time (millisecond timestamp) |
| tradeType | integer | integer | Trade type (1: spot, 2: futures, 3: delivery futures) |
| vsTokenId | long | string | Token ID |
| symbol | string | string | Token symbol |
| name | string | string | Token name |
| startTime | long | long | Movement start time (millisecond timestamp) |
| endTime | long | long | Movement end time (millisecond timestamp) |
| number24h | integer | integer | Movement count within 24h |
| numberNot24h | integer | integer | Movement count outside 24h |
| price | number | string | Current price (USD) |
| pushPrice | number | string | Movement push price (USD) |
| gains | number | number | Upside move after push (%) |
| decline | number | number | Drawdown after push (%) |
| percentChange24h | number | string | 24-hour price change percentage |
| marketCap | number | string | Market cap (USD) |
| alpha | boolean | boolean | Alpha signal flag |
| fomo | boolean | boolean | FOMO state flag |
| fomoEscalation | boolean | boolean | FOMO escalation flag |
| bullishRatio | number | number | Bullish sentiment ratio |
Field semantics
The following fields require additional business context:
| Field | Business meaning | Range / calculation | Usage suggestion |
|---|---|---|---|
| startTime | Movement start time | Start of the funds movement period | Use to understand movement duration |
| endTime | Movement end time | End of the funds movement period | Use with startTime to judge movement cycle |
| number24h | Short-term movement | Count of fund movements detected in the last 24 hours | More occurrences indicate more frequent movement |
| numberNot24h | Trend movement | Fund movement count detected within 3 months | More occurrences indicate more frequent movement |
| pushPrice | Movement push price | Price when the system first pushed this movement token | Use to calculate upside/downside after entry |
| alpha | Alpha signal | Boolean; indicates unusually active major players or high upside potential | Pay more attention when true |
| fomo | FOMO signal | Boolean; indicates active market sentiment and possible trend continuation | When true, upside may continue but watch chase risk |
| fomoEscalation | FOMO escalation | Boolean; overheated FOMO sentiment with possible sudden risk | When true, risk increases significantly |
Enum reference
tradeType — trade type
| Value | Meaning |
|---|---|
| 1 | Spot |
| 2 | Perpetual futures |
| 3 | Delivery futures |
Request example
json
{}cURL example (Linux/macOS)
bash
curl --location --request POST 'http://${host}/api/open/v1/ai/getFundsCoinList' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: xxxxx' \
--header 'X-TIMESTAMP: xxxxx' \
--header 'X-SIGN: xxxxx' \
--header 'Accept: */*' \
--data-raw '{}'cURL example (Windows CMD)
cmd
curl --location --request POST "http://${host}/api/open/v1/ai/getFundsCoinList" ^
--header "Content-Type: application/json" ^
--header "X-API-KEY: xxxxx" ^
--header "X-TIMESTAMP: xxxxx" ^
--header "X-SIGN: xxxxx" ^
--header "Accept: */*" ^
--data-raw "{}"Sample success response
json
{
"code": 200,
"message": "success",
"data": [
{
"updateTime": 1773395400000, // Update time
"tradeType": 2, // Trade type (1: spot, 2: futures, 3: delivery futures)
"vsTokenId": "22974", // Token ID
"symbol": "TAO", // Token symbol
"name": "Bittensor", // Token name
"startTime": 1773297600000, // Start time
"endTime": 1773395400000, // End time
"number24h": 7, // Count within 24h
"numberNot24h": 1, // Count outside 24h
"price": "237.5", // Price
"pushPrice": "205.7", // Push price
"gains": 19.202722, // Upside move
"decline": 1.069519, // Drawdown
"percentChange24h": "4.56494468", // 24-hour price change percentage
"marketCap": "2555201474.4451013", // Market cap
"alpha": true, // Alpha flag
"fomo": false, // FOMO flag
"fomoEscalation": false, // FOMO escalation flag
"bullishRatio": 0.5569 // Bullish sentiment ratio
},
{
"updateTime": 1773400200000,
"tradeType": 2,
"vsTokenId": "1027",
"symbol": "ETH",
"name": "Ethereum",
"startTime": 1773303600000,
"endTime": 1773400200000,
"number24h": 9,
"numberNot24h": 11,
"price": "2124.62",
"pushPrice": "2049.61",
"gains": 4.8394569999999995,
"decline": 0.576695,
"percentChange24h": "0.01534736",
"marketCap": "256788544785.465",
"alpha": true,
"fomo": false,
"fomoEscalation": false,
"bullishRatio": 0.5077
},
{
"updateTime": 1773395400000,
"tradeType": 2,
"vsTokenId": "1",
"symbol": "BTC",
"name": "Bitcoin",
"startTime": 1773308700000,
"endTime": 1773395400000,
"number24h": 7,
"numberNot24h": 8,
"price": "72298",
"pushPrice": "70297.65",
"gains": 3.2409760000000003,
"decline": 1.340457,
"percentChange24h": "0.32026971",
"marketCap": "1438236485462.7542",
"alpha": false,
"fomo": false,
"fomoEscalation": false,
"bullishRatio": 0.443
}
// ... more items omitted
],
"requestId": "xxx-xxx-xxx"
}